home *** CD-ROM | disk | FTP | other *** search
- unit Properties;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- Grids;
-
- type
- TFormProperties = class(TForm)
- StringGridProperties: TStringGrid;
- procedure FormResize(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- FormProperties: TFormProperties;
-
- implementation
-
- {$R *.DFM}
-
- procedure TFormProperties.FormResize(Sender: TObject);
- begin
- {}
- StringGridProperties.Height := FormProperties.ClientHeight - 5;
- end;
-
- end.
-